home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-Sensation: Golden Games / Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso / Adventurer's / Zorkmachine / MakeFile < prev    next >
Makefile  |  1992-04-30  |  285b  |  16 lines

  1. .c.o:
  2.     cc $(CFLAGS) $*.c
  3.  
  4. OBJS        = zmachine.o io.o code.o mem.o zbios.o console.o getopt.o wb.o sound.o
  5.  
  6. # For Aztec `C' 5.2a I suggest using `-wruc'
  7.  
  8. CFLAGS        = -DAMIGA -ms -so -wru
  9.  
  10. all:        ZorkMachine
  11.  
  12. console.o:    console.c ZorkMachine.h
  13.  
  14. ZorkMachine:    $(OBJS)
  15.         ln -o $@ $(OBJS) -lc +cd
  16.